home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / install-info < prev    next >
Text File  |  2009-10-27  |  930b  |  25 lines

  1. #!/bin/sh
  2. #
  3. # Wrapper to the GNU's install-info, to be compatible with the one that used to
  4. # be packaged by dpkg on Debian.
  5. #
  6. # written by Norbert Preining, this is not copyrightable ;-)
  7. #
  8. set -e
  9.  
  10. if [ -z "$DPKG_RUNNING_VERSION" ] ; then
  11.   # it seems we are running from outside a maintainer script, so give a
  12.   # warning and call ginstall-info without anything else
  13.   echo "This is not dpkg install-info anymore, but GNU install-info" >&2
  14.   echo "See the man page for ginstall-info for command line arguments" >&2
  15.   ginstall-info "$@"
  16. else 
  17.   # we are running from a maintainer script, simply ignore the call
  18.   # since we have trigger support and people should rebuild their
  19.   # package with new debhelper which does not add calls to install-info
  20.   echo "Ignoring install-info called from maintainer script" >&2
  21.   echo "The package $DPKG_MAINTSCRIPT_PACKAGE should be rebuild with new debhelper to get trigger support" >&2
  22. fi
  23.  
  24.  
  25.